home *** CD-ROM | disk | FTP | other *** search
/ Aminet 1 (Walnut Creek) / Aminet - June 1993 [Walnut Creek].iso / aminet / text / print / sas6post.lha / postint.c.diff < prev    next >
Text File  |  1993-03-14  |  249b  |  14 lines

  1. 380c380,383
  2. <         if (putc(*sptr++, fptr) == EOF) error(errioerror);
  3. ---
  4. >     {
  5. >     if (putc(*sptr, fptr) == EOF) error(errioerror);
  6. >     sptr++;
  7. >     }
  8. 520a524,528
  9. >     if(feof(fptr) && !ferror(fptr))
  10. >     {
  11. >     return EOF;
  12. >     } /* if */
  13.